Skip to content

chore(deps): bump minio from 7.1.3 to 8.0.6 - #3559

Merged
flopez7 merged 5 commits into
developfrom
dependabot/npm_and_yarn/develop/minio-8.0.6
Dec 5, 2025
Merged

chore(deps): bump minio from 7.1.3 to 8.0.6#3559
flopez7 merged 5 commits into
developfrom
dependabot/npm_and_yarn/develop/minio-8.0.6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 15, 2025

Copy link
Copy Markdown
Contributor

Bumps minio from 7.1.3 to 8.0.6.

Release notes

Sourced from minio's releases.

Bug fix release 8.0.6

What's Changed

New Contributors

Full Changelog: minio/minio-js@8.0.5...8.0.6

Bugfix Release

What's Changed

New Contributors

Full Changelog: minio/minio-js@8.0.4...8.0.5

Bugfix Release

What's Changed

New Contributors

Full Changelog: minio/minio-js@8.0.3...8.0.4

Bugfix Release

What's Changed

... (truncated)

Commits
  • 212f282 fix: redirect xml parser error to stream error (#1416)
  • 5f2dc07 fix documentation link (#1419)
  • ebd419e test with node v24 (#1420)
  • eab7cb6 build(deps-dev): bump form-data from 4.0.0 to 4.0.4
  • 7a67d9a Update package.json for type definition entry point (#1315)
  • 8654c77 fix: make getBucketRegionAsync public (#1413)
  • fbcfe63 fix listing bug in v1 and add missing v1 version listing (#1405)
  • 6a821b5 fix tag parsing and type and update validation and tests (#1399)
  • d8c6721 fix large object upload and and update functional test for 0 byte file upload...
  • bcbd469 Update version to next release
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 15, 2025
@vercel

vercel Bot commented Sep 15, 2025

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
faucet-server Ready Ready Preview Comment Nov 25, 2025 4:38pm
human-app Ready Ready Preview Comment Nov 25, 2025 4:38pm
human-dashboard-frontend Ready Ready Preview Comment Nov 25, 2025 4:38pm
staking-dashboard Ready Ready Preview Comment Nov 25, 2025 4:38pm
1 Skipped Deployment
Project Deployment Preview Comments Updated (UTC)
faucet-frontend Ignored Ignored Preview Nov 25, 2025 4:38pm

@flopez7

flopez7 commented Nov 21, 2025

Copy link
Copy Markdown
Contributor

@dependabot rebase

Bumps [minio](https://github.com/minio/minio-js) from 7.1.3 to 8.0.6.
- [Release notes](https://github.com/minio/minio-js/releases)
- [Commits](minio/minio-js@7.1.3...8.0.6)

---
updated-dependencies:
- dependency-name: minio
  dependency-version: 8.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@flopez7

flopez7 commented Nov 21, 2025

Copy link
Copy Markdown
Contributor

There's a breaking change with Minio 8.0.6 in browser environments.

In Minio 7.1.3, file system (fs) imports were lazy - only executed when actually needed. In Minio 8.x, they reorganized the code during the TypeScript migration and made fs imports eager.

Problem: The SDK now tries to access Node.js fs module at startup, which doesn't exist in browsers. This crashes the entire SDK import.

Impact: If we upgrade to Minio 8.0.6, the SDK breaks all frontend and client services that import it. Every app using our SDK will fail to load.

Solution: We can add polyfills on every client service (like browserify-fs) to mock the fs module, but this adds complexity and dependencies. Alternatively, we should consider staying on Minio 7.1.3 until they fix browser compatibility in future releases.

@portuu3 @dnechay @Dzeranov

@flopez7 flopez7 added the do-not-merge PR shouldn't be merged until this label is removed label Nov 21, 2025
@dnechay

dnechay commented Nov 24, 2025

Copy link
Copy Markdown
Collaborator

@flopez7 I might be missing something, but from what I see StorageClient (the only thing that relies on minio) isn't used in SDK itself and already marked as deprecated. From apps - only Fortune oracles and HUMAN App BE rely on this for very primitive operations, so I would move to deprecating this and just bumping minio, wdyt?

@flopez7 flopez7 moved this to In Progress in Core-tech - 2025 Nov 24, 2025
@flopez7 flopez7 moved this from In Progress to In Review in Core-tech - 2025 Nov 24, 2025
@flopez7 flopez7 moved this from In Review to In Progress in Core-tech - 2025 Nov 25, 2025
Comment thread packages/apps/fortune/exchange-oracle/server/src/common/utils/storage.ts Dismissed
Comment thread packages/apps/fortune/recording-oracle/src/common/utils/storage.ts Dismissed
@vercel
vercel Bot temporarily deployed to Preview – staking-dashboard November 25, 2025 16:36 Inactive
@vercel
vercel Bot temporarily deployed to Preview – human-dashboard-frontend November 25, 2025 16:37 Inactive
@vercel
vercel Bot temporarily deployed to Preview – human-app November 25, 2025 16:37 Inactive
@flopez7 flopez7 removed the do-not-merge PR shouldn't be merged until this label is removed label Nov 25, 2025
@flopez7 flopez7 moved this from In Progress to In Review in Core-tech - 2025 Nov 25, 2025
@flopez7
flopez7 requested a review from dnechay November 26, 2025 09:23

@dnechay dnechay left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if there might be some other breaking change because they are not clearly mentioned them in their release notes, so let's please double-check it on STG before release

@flopez7
flopez7 merged commit dddf2b8 into develop Dec 5, 2025
11 checks passed
@github-project-automation github-project-automation Bot moved this from In Review to Done in Core-tech - 2025 Dec 5, 2025
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/develop/minio-8.0.6 branch December 5, 2025 12:07
@portuu3 portuu3 mentioned this pull request Dec 5, 2025
21 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

4 participants